From d10b76b54745eb6f4972339caa4219cb1f50ae52 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Tue, 6 Feb 2024 01:15:14 +0000 Subject: [API] Add the POST /api/v1/links api --- app/api/auth/[...nextauth]/route.tsx | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) (limited to 'app/api/auth/[...nextauth]') diff --git a/app/api/auth/[...nextauth]/route.tsx b/app/api/auth/[...nextauth]/route.tsx index b9decb30..bfcda516 100644 --- a/app/api/auth/[...nextauth]/route.tsx +++ b/app/api/auth/[...nextauth]/route.tsx @@ -1,21 +1,3 @@ -import NextAuth from "next-auth" -import { PrismaAdapter } from "@next-auth/prisma-adapter" -import AuthentikProvider from "next-auth/providers/authentik"; -import { PrismaClient } from "@prisma/client" -import serverConfig from "@/lib/config"; +import { authHandler } from "@/lib/auth"; -const prisma = new PrismaClient() - -let providers = []; - -if (serverConfig.auth.authentik) { - providers.push(AuthentikProvider(serverConfig.auth.authentik)); -} - -const handler = NextAuth({ - // Configure one or more authentication providers - adapter: PrismaAdapter(prisma), - providers: providers, -}); - -export { handler as GET, handler as POST } +export { authHandler as GET, authHandler as POST } -- cgit v1.2.3-70-g09d2